Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CombineWarpCommand Constructor(RasterImage,Point[],Rectangle,CombineWarpCommandFlags)
See Also 
Leadtools.ImageProcessing Namespace > CombineWarpCommand Class > CombineWarpCommand Constructor : CombineWarpCommand Constructor(RasterImage,Point[],Rectangle,CombineWarpCommandFlags)



destinationImage
The destination image for the command.
destinationPoints
An array that contains the four points that define the warp area in the destination image.
sourceRectangle
Defines the area of the source image to be warped.
flags
Flags that indicate the type of interpolation to use, if interpolation is used.
Initializes a new instance of the CombineFastCommand with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal destinationImage As RasterImage, _
   ByVal destinationPoints() As Point, _
   ByVal sourceRectangle As Rectangle, _
   ByVal flags As CombineWarpCommandFlags _
)
Visual Basic (Usage)Copy Code
Dim destinationImage As RasterImage
Dim destinationPoints() As Point
Dim sourceRectangle As Rectangle
Dim flags As CombineWarpCommandFlags
 
Dim instance As CombineWarpCommand(destinationImage, destinationPoints, sourceRectangle, flags)
C# 
public CombineWarpCommand( 
   RasterImage destinationImage,
   Point[] destinationPoints,
   Rectangle sourceRectangle,
   CombineWarpCommandFlags flags
)
C++/CLI 
public:
CombineWarpCommand( 
   RasterImage^ destinationImage,
   array<Point>^ destinationPoints,
   Rectangle sourceRectangle,
   CombineWarpCommandFlags flags
)

Parameters

destinationImage
The destination image for the command.
destinationPoints
An array that contains the four points that define the warp area in the destination image.
sourceRectangle
Defines the area of the source image to be warped.
flags
Flags that indicate the type of interpolation to use, if interpolation is used.

Example

For an example, refer to CombineWarpCommand.

Remarks

destinationImage will hold the result of combing this image with the image passed to the RasterCommand.Run method.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also